const runtime.timeHistMinBucketBits
8 uses
runtime (current package)
histogram.go#L65: timeHistMinBucketBits = 9
histogram.go#L69: timeHistNumBuckets = timeHistMaxBucketBits - timeHistMinBucketBits + 1
histogram.go#L119: if l := sys.Len64(uint64(duration)); l < timeHistMinBucketBits {
histogram.go#L120: bucketBit = timeHistMinBucketBits
histogram.go#L124: bucket = bucketBit - timeHistMinBucketBits + 1
histogram.go#L163: bucketNanos := uint64(j) << (timeHistMinBucketBits - 1 - timeHistSubBucketBits)
histogram.go#L170: for i := timeHistMinBucketBits; i < timeHistMaxBucketBits; i++ {
histogram.go#L180: bucketIndex := (i-timeHistMinBucketBits+1)*timeHistNumSubBuckets + j + 1
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |